* configure.ac: Make force the value of shrext to either .dll or .so
(it seems like it wasn't defined for unixy systems after all).
svn path=/trunk/; revision=231
+2007-03-21 Øyvind Kolås <pippin@gimp.org>
+
+ * configure.ac: Make force the value of shrext to either .dll or .so
+ (it seems like it wasn't defined for unixy systems after all).
+
2007-03-13 Michael Schumacher <schumaml@cvs.gnome.org>
* configure.ac: use PATHSEP (platform-dependent, defined to ';' on
#################
AC_MSG_CHECKING([for some Win32 platform])
-case "$target_or_host" in
+case "$target_or_host" in
*-*-mingw* | *-*-cygwin*)
platform_win32=yes
+ shrext=.dll
;;
*)
platform_win32=no
+ shrext=.so
;;
esac
AC_MSG_RESULT([$platform_win32])